home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 March
/
CHIP Mart 1997.iso
/
Internet
/
comit
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-02-17
|
1KB
|
52 lines
@echo off
rem
rem Batch file for DosFax LITE & COMit LITE/DOS dual install
rem
rem
rem The program 'dialog' puts up an install selection dialog box
rem on the screen and returns the users choices as 'errorlevel'
rem
rem 0 = Don't install either package
rem 1 = Only install DosFax LITE
rem 2 = Only install COMit LITE/DOS
rem 3 = Install both packages
rem
if not exist dialog.exe goto chdrive
dialog
cls
if errorlevel 3 goto both
if errorlevel 2 goto comit
if errorlevel 1 goto dosfax
if errorlevel 0 goto none
:chdrive
echo Please change to the drive containing the installation
echo diskette and re-run the install program.
goto exit
:dosfax
echo Installing Delrina DosFax LITE
cd \DosFax
install
rem
rem DosFax LITE Installation
rem
goto exit
:both
echo Installing Delrina DosFax LITE
cd \dosfax
install
rem
rem DosFax LITE Installation
rem
:comit
echo Installing COMit LITE for DOS
cd \comitd
install
rem
rem COMit LITE/DOS Installation
rem
goto exit
:none
echo No installation requested
:exit
cd \